From eeafc64a2aee8bb51f380e9a3226855abaa3feb9 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 2 Apr 2007 13:08:05 +0100 Subject: [PATCH] xentop: Fix memory leak. Signed-off-by: Atsushi SAKAI --- tools/xenstat/xentop/xentop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/xenstat/xentop/xentop.c b/tools/xenstat/xentop/xentop.c index faff532bfa..2bb28205f6 100644 --- a/tools/xenstat/xentop/xentop.c +++ b/tools/xenstat/xentop/xentop.c @@ -984,6 +984,8 @@ static void top(void) if(!batch) do_bottom_line(); + + free(domains); } int main(int argc, char **argv) -- 2.30.2